home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / chkshsgr.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  139 b   |  10 lines

  1. #include "exit.h"
  2. void main()
  3. {
  4.  short x[4];
  5.  
  6.  x[0] = x[1] = 0;
  7.  if (getgroups(1,x) == 0) if (setgroups(1,x) == -1) _exit(1);
  8.  _exit(0);
  9. }
  10.